home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / NDK / NDK_3.1 / Examples1 / intuition / smakefile < prev   
Encoding:
Makefile  |  1999-10-27  |  1.7 KB  |  82 lines

  1. # V39 INTUITION DEMOS lmkfile
  2. #
  3. # (c) Copyright 1992-1999 Amiga, Inc.  All rights reserved.
  4. #
  5. # This software is provided as-is and is subject to change; no warranties
  6. # are made.  All use is at your own risk.  No liability or responsibility
  7. # is assumed.
  8. #
  9. # These demos show off some of the new V39 Intuition features:
  10. #
  11. # attachdemo.c - demonstrates handling attached screens
  12. #
  13. # doublebuffer.c - shows double-buffering, attached screens, menu lending
  14. #
  15. # frameidemo.c - shows frame types from frameiclass
  16. #
  17. # gadgethelp.c - shows help and bounds on a prop gadget
  18. #
  19. # makevisible.c - shows off SPOS_MAKEVISIBLE feature
  20. #
  21. # nlmenu.c - shows use of NewLook menus using Intuition and GadTools
  22. #
  23. # relspecial.c - shows special gadget relativity
  24. #
  25. #
  26. # HARDWARE-SPECIFIC DEMOS:
  27. #
  28. # 8hamdemo.c - shows off 256000 colors simultaneously
  29. #
  30. # pointerdemo.c - shows off new pointer features
  31. #
  32. #
  33.  
  34. CFILES = attachdemo.c \
  35.     doublebuffer.c \
  36.     frameidemo.c \
  37.     gadgethelp.c \
  38.     makevisible.c \
  39.     nlmenu.c \
  40.     relspecial.c \
  41.     8hamdemo.c \
  42.     pointerdemo.c
  43.  
  44. EXEFILES = attachdemo \
  45.     doublebuffer \
  46.     frameidemo \
  47.     gadgethelp \
  48.     makevisible \
  49.     nlmenu \
  50.     relspecial \
  51.     8hamdemo \
  52.     pointerdemo
  53.  
  54. all: $(EXEFILES)
  55.  
  56. attachdemo: attachdemo.c
  57.     sc link structureequivalence $*
  58.  
  59. doublebuffer: doublebuffer.c
  60.     sc link structureequivalence $*
  61.  
  62. frameidemo: frameidemo.c
  63.     sc link structureequivalence $*
  64.  
  65. gadgethelp: gadgethelp.c
  66.     sc link structureequivalence $*
  67.  
  68. makevisible: makevisible.c
  69.     sc link structureequivalence $*
  70.  
  71. nlmenu: nlmenu.c
  72.     sc link structureequivalence $*
  73.  
  74. relspecial: relspecial.c
  75.     sc link structureequivalence nostackcheck $*
  76.  
  77. 8hamdemo: 8hamdemo.c
  78.     sc link structureequivalence $*
  79.  
  80. pointerdemo: pointerdemo.c
  81.     sc link structureequivalence $*
  82.